From 10636c0f833546f6661f7683d8c5a31b3e5e5d76 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 25 Jan 2001 09:44:53 +0000 Subject: [PATCH] (ccl_driver): Fix last change. --- src/ccl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ccl.c b/src/ccl.c index 259ae8662f5..f5f024bf8d6 100644 --- a/src/ccl.c +++ b/src/ccl.c @@ -1720,8 +1720,9 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) } ccl_error_handler: - if (ccl->suppress_error - && destination) + /* The suppress_error member is set when e.g. a CCL-based coding + system is used for terminal output. */ + if (!ccl->suppress_error && destination) { /* We can insert an error message only if DESTINATION is specified and we still have a room to store the message -- 2.30.2